1 <?php
2 session_start();
3
4 ?>
5 <!DOCTYPE html PUBLIC
"-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
6 <html xmlns=
"http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
7 <head>
8
9 <link rel=
"stylesheet" href="images/Underground.css" type="text/css" />
10
11 <title>E-Workshop</title>
12
13 </head>
14
15 <body>
16 <!-- wrap starts here -->
17 <div id=
"wrap">
18
19         <!-- header -->
20         <div id=
"header">
21
22             <!-- tabs -->
23             <ul>
24                 <li id=
"current"><a href="index.php"><span>Home</span></a></li>
25                 <?php
26                 
if(isset($_SESSION[custid]))
27                 {
28                 echo
"<li><a href='account.php'><span>Account</span></a></li>";
29                 }
30                 
else if(!(isset($_SESSION[empid])))
31                 {
32                 echo
"<li><a href='login.php'><span>Login</span></a></li>
33                 <li><a href='registration.php'><span>Registration</span></a></li>
34                 <li><a href='service.php'><span>Vehicle Service</span></a></li>"
;
35                 }
36                 ?>
37                 <li><a href=
"vehiclestore.php"><span>Vehicle Store</span></a></li>
38                 <li><a href=
"sparepartsstore.php"><span>Spare Parts</span></a></li>
39             </ul>
40         </div>
41
42         <div id=
"header-logo">
43
44             <div id=
"logo">
45                 <span
class="red">Online Vehicle Management System</span>
46             </div>
47
48         </div>


Gõ tìm kiếm nhanh...